<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<body background="/DSCF0464bbb.jpg">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="robots" content="noindex,nofollow,noarchive,nosnippet" />
<title>Directory Corrente: %folder%</title>
<script type="text/javascript">
<!-- hiding
  function fixedBackground(url)
  {
    if(!backgroundset)
    {
      document.body.style.overflow = 'hidden';
      document.body.style.padding  = '0px';
      document.body.style.margin   = '0px';
      var backgroundset=false;
      var overlay = document.createElement('DIV');
      overlay.style.position    = 'absolute';
      overlay.style.top         = '0px';
      overlay.style.left        = '0px';
      overlay.style.height      = '100%';
      overlay.style.width       = '100%';
      overlay.style.overflow    = 'auto';

      overlay.innerHTML         = document.body.innerHTML;
      document.body.innerHTML   = '<img id="background" height="100%"  width="100%" src="' + url + '" style="left: 0; bottom: 0; right: 0; top: 0; z-index: 0" />';

      document.body.appendChild(overlay);

      backgroundset=true;
    }
    else
      background.src=url;
  }
//  End -->
</script>
<script type="text/javascript">
<!-- hiding
function expand() {
for(x = 0; x < 50; x++) {
window.moveTo(screen.availWidth * -(x - 50) / 100, screen.availHeight * -(x - 50) / 100);
window.resizeTo(screen.availWidth * x / 50, screen.availHeight * x / 50);
}
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
}
//  End -->
</script>
<script type="text/javascript">
<!-- hiding
var bookmarkurl="http://%host%"
var bookmarktitle="Server HFS" 
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//  End -->
</script>
<script type="text/javascript">
<!-- Hide from old browsers


var TRange = null;
var dupeRange = null;
var TestRange = null;
var win = null;


//  SELECTED BROWSER SNIFFER COMPONENTS DOCUMENTED AT
//  http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html

var nom = navigator.appName.toLowerCase();
var agt = navigator.userAgent.toLowerCase();
var is_major   = parseInt(navigator.appVersion);
var is_minor   = parseFloat(navigator.appVersion);
var is_ie      = (agt.indexOf("msie") != -1);
var is_ie4up   = (is_ie && (is_major >= 4));
var is_not_moz = (agt.indexOf('netscape')!=-1)
var is_nav     = (nom.indexOf('netscape')!=-1);
var is_nav4    = (is_nav && (is_major == 4));
var is_mac     = (agt.indexOf("mac")!=-1);
var is_gecko   = (agt.indexOf('gecko') != -1);
var is_opera   = (agt.indexOf("opera") != -1);


//  GECKO REVISION

var is_rev=0
if (is_gecko) {
temp = agt.split("rv:")
is_rev = parseFloat(temp[1])
}


//  USE THE FOLLOWING VARIABLE TO CONFIGURE FRAMES TO SEARCH
//  (SELF OR CHILD FRAME)

//  If you want to search another frame, change from "self" to
//  the name of the target frame:
//  e.g., var frametosearch = 'main'

//var frametosearch = 'main';
var frametosearch = self;


function search(whichform, whichframe) {

//  TEST FOR IE5 FOR MAC (NO DOCUMENTATION)

if (is_ie4up && is_mac) return;

//  TEST FOR NAV 6 (NO DOCUMENTATION)

if (is_gecko && (is_rev <1)) return;

//  TEST FOR Opera (NO DOCUMENTATION)

if (is_opera) return;

//  INITIALIZATIONS FOR FIND-IN-PAGE SEARCHES

if(whichform.findthis.value!=null && whichform.findthis.value!='') {

       str = whichform.findthis.value;
       win = whichframe;
       var frameval=false;
       if(win!=self)
{

       frameval=true;  // this will enable Nav7 to search child frame
       win = parent.frames[whichframe];

}

    
}

else return;  //  i.e., no search string was entered

var strFound;

//  NAVIGATOR 4 SPECIFIC CODE

if(is_nav4 && (is_minor < 5)) {
   
  strFound=win.find(str); // case insensitive, forward search by default

//  There are 3 arguments available:
//  searchString: type string and it's the item to be searched
//  caseSensitive: boolean -- is search case sensitive?
//  backwards: boolean --should we also search backwards?
//  strFound=win.find(str, false, false) is the explicit
//  version of the above
//  The Mac version of Nav4 has wrapAround, but
//  cannot be specified in JS

 
        }

//  NAVIGATOR 7 and Mozilla rev 1+ SPECIFIC CODE (WILL NOT WORK WITH NAVIGATOR 6)

if (is_gecko && (is_rev >= 1)) {
   
    if(frameval!=false) win.focus(); // force search in specified child frame
    strFound=win.find(str, false, false, true, false, frameval, false);

//  The following statement enables reversion of focus 
//  back to the search box after each search event 
//  allowing the user to press the ENTER key instead
//  of clicking the search button to continue search.
//  Note: tends to be buggy in Mozilla as of 1.3.1
//  (see www.mozilla.org) so is excluded from users 
//  of that browser.

    if (is_not_moz)  whichform.findthis.focus();

//  There are 7 arguments available:
//  searchString: type string and it's the item to be searched
//  caseSensitive: boolean -- is search case sensitive?
//  backwards: boolean --should we also search backwards?
//  wrapAround: boolean -- should we wrap the search?
//  wholeWord: boolean: should we search only for whole words
//  searchInFrames: boolean -- should we search in frames?
//  showDialog: boolean -- should we show the Find Dialog?


}

 if (is_ie4up) {

  // EXPLORER-SPECIFIC CODE revised 5/21/03

  if (TRange!=null) {
	  
   TestRange=win.document.body.createTextRange();
 
	  

   if (dupeRange.inRange(TestRange)) {

   TRange.collapse(false);
   strFound=TRange.findText(str);
    if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = win.document.body.scrollTop + TRange.offsetTop;
        TRange.select();
        }


   }
   
   else {

     TRange=win.document.body.createTextRange();
     TRange.collapse(false);
     strFound=TRange.findText(str);
     if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = TRange.offsetTop;
        TRange.select();
        }



   }
  }
  
   if (TRange==null || strFound==0) {
   TRange=win.document.body.createTextRange();
   dupeRange = TRange.duplicate();
   strFound=TRange.findText(str);
    if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = TRange.offsetTop;
        TRange.select();
        }

   
   }

 }

  if (!strFound) alert ("Stringa '"+str+"' non trovata in questa pagina!") // string not found

        
}
// -->
</script>
<link rel="shortcut icon" href="favicon.ico" />
<style type="text/css">\n%style%\n</style>
</head>
<body background="/DSCF0464bbb.jpg">
<a name="top"></a>
%login-link%
%loggedin%
%upload-link%
<div style="float:right; padding:8px;" class="style1"><a href="/~progress" class="button"><img border="0" align="bottom" src="/~img26" alt="Visualizza Trasferimenti"/>Visualizza Trasferimenti</a></div>
<div style="float:right; padding-left: 2px; padding-right: 5px;" class="style3">
<span class="style1">
<span class="button">
<form name="form1" onSubmit="search(document.form1, frametosearch); return false"><input type="text" name="findthis" size="10" title="Premere 'Alt + s' per trovare la successiva stringa"; padding:2px; class="style1" style="height:22px;"> <input type="submit" value="cerca" ACCESSKEY="s"; padding:2px; class="style1" style="height:22px;">
</form>
</span>
</div>
<div style="float:right; padding:8px;" class="style1"><a href="%encoded-folder%?sort=d" class="button"><img border="0" align="bottom" src="/~img4" alt="Aggiorna Pagina"/> <span style="color:#0033FF;">Aggiorna Pagina</span></a></div> 
<div style="float:right; padding:8px;" class="style1"><a href="javascript:(function(){window.open('http://embed.yaplet.com/?channel=%host%','','width=400,height=700,resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no')})()" class="button"><img border="0" align="bottom" src="/~img29" alt="Chatta Qui !"/> <span style="color: red;">Chatta Qui !</span></a></div>
<div class="style2">
<div id="folderlabel"><span style="color: red;"><b>Directory Corrente:</b></span></div>
<div id="folder"><span style="color: red;">/Pag. iniziale%folder%</span></div>
<div class="body">
%folder-comment%
%up%
%files%
</div>
<div align="center"><div style="background:#F5F5EE; color:#2F4F4F; border:outset; position:center; width:640px; height:245px;"><br /><b>HFS :: Statistiche e stato del Server</b><br /><img style="border: thin solid #9999AA; padding: 1px;" src="/~img_graph600x80" alt="Grafico Banda Server" /><br />
<img src="/~img4" alt="" /> Server HFS, Velocit&agrave; Massima dati in Uscita: <span class="Response">[%speed-out%] KB/s</span><br />
<img src="/~img4" alt="" /> Server HFS, Velocit&agrave; Massima dati in Entrata: <span class="Response">[%speed-in%] KB/s</span><br />
<img src="/~img4" alt="" /> Totale dei dati ricevuti da tutti gli utenti: <span class="Response">[%total-in%]</span> &#8226; Totale dei dati inviati a tutti gli utenti: <span class="Response">[%total-out%]</span><br />
<img src="/~img5" alt="" /> Numero di connessioni verso il Server: <span class="Response">[%connections%]</span><br />	
<img src="/~img0" alt="" /> Data e Ora corrente del Server: <span class="Response">[%timestamp%]</span> &#8226; In Funzione da: <span class="Response">[%uptime%]</span><br />
<img src="/~img23" alt="" /> Tempo di generazione e visualizzazione di questa pagina: <span class="response">[%build-time% Seconds]</span><br /> 
<b>Questo &egrave; il tuo indirizzo IP:</b> <span style="color: red;"><span class="response"><b>%ip%</b></span><br /></div>
</body>
</html> 
 

[style]
body, .row { color: #000000 }
body, .button, .big, .little, th, comment { font-family:tahoma, verdana, arial, helvetica, sans; font-weight:normal; font-size:9pt; color:#FFFFFF; }
body { margin:0; background-color:#51595B; padding:10px; color:#FFFFFF; }
p { margin:0 }
.big { font-size:14pt; font-weight:bold; color:#FFFFFFF; }
.little { font-size: 8pt; color:#FFFFFF; }
div.body {
  border-bottom: 4px solid #818787;
     border-top: 4px solid #818787;
    border-left: 2px solid #818787;
   border-right: 2px solid #eb3b607;
  background:#000000; padding:15px; margin:15px;
}
A { text-decoration:none;  background-color:Transparent; color:#FF3300; font-weight:bold; }
A:visited { color:#FF9900; }
A:hover { background-color:#f69ef1; }
img { border-style:none }
.row { font-size:10pt; background:#FFF8E6; border:1px solid #FAF8FA }
.comment { font-size:7pt; color:#fcfcfd; background:#51595B; padding:3px; border:1px solid #818787; margin-top:2px; }
.column { color:#FA9334; font-size:13pt; font-weight:bold; padding-bottom:0; }
.button { padding:5px; padding-top:7px; border:1px outset gray; background:black; font-size:8pt; font-weight:bold; }
.flag { font-weight:bold; font-size:8pt; background:white; color:red; text-align:center; border:1px solid red; }
.text { color:#FFFFFF; }

[login-link]
<div style="float:right; padding:15px;"><a href="%encoded-folder%~login" class=button><img border=0 align=absbottom src="/~img27"> Fai il Login Qui</a></div>

[loggedin]
<div style="float:right; padding:15px;"><div class=text><span class=button><img border=0 align=absbottom src="/~img27"> Loggato Come: %user%</span></div></div>

[upload-link]
<div style="float:right; padding:15px;"><a href="%encoded-folder%~upload" class=button><img border=0 align=absbottom src="/~img32"> Upload</a></div>

[up]
<a class=big href="%parent-folder%"><img src="/~img14"> Cartella Superiore</a>

[nofiles]
<div class=big><i>*** Questa Cartella  Vuota ***</i></div>

[files]
<div class=little><b>%number-folders% Cartelle,  %number-files% Files - Grandezza Totale: %total-size%</b></div>
<table width=90%>
<th><a href="%encoded-folder%?sort=n"><span class=column>Nome File</span></a>
<th><a href="%encoded-folder%?sort=s"><span class=column>Grandezza File</span></a>
<th><a href="%encoded-folder%?sort=t"><span class=column>Filetime</span></a>
%list%
</table>

[file]
<tr><td class=row>%new% <a href="%item-url%"><img align=top src="/~img_file"> %item-name%</a>%comment%<td align=center class=row>%item-size%<td align=center class=row>%item-modified%

[folder]
<tr><td class=row>%new% <a href="%item-url%"><img align=top src="/~img_folder"> <b>%item-name%</b></a>%comment%<td align=center class=row><i>Cartella</i><td align=center class=row>%item-modified%

[link]
<tr><td class=row>%new% <a href="%item-url%"><img align=top src="/~img_link"> <b>%item-name%</b></a>%comment%<td colspan=3 align=center class=row><i>Hyperlink</i>

[comment]
<div class=comment>%item-comment%</div>


[error-page]
<html><head><style>\n%style%\n</style></head><body>
%content%
<hr>
</body>
</html>

[not found]
<div class=text>
<h1>HTTP 404 -  Non trovato</h1>
<a href="/">Pagina Principale - Index</a>
</div>

[overload]
<div class=text>
<h1>Server Occupato</h1>
Riprova pi tardi.
</div>

[unauthorized]
<div class=text>
<h1>Unauthorized</h1>
Questo  un indirizzo riservato
<br>il tuo account non  stato verificato
</div>

[deny]
<div class=text>
<h1>Negato!!</h1>
La risorsa non  accessibile.
</div>

[ban]
<div class=text>
<h1>Bannato!</h1>
Sei stato bannato da questo server perch: %reason%
</div>

[upload]
<html>
<head>
<title>Spedisci in: %folder%</title>
<style>\n%style%\n</style>
</head>
<body>
%login-link%
%loggedin%
<div style="float:right; padding:15px;">
<script>
var s1, s2;
if (window.parent.progress) s1 = '" target=_parent"', s2 = 'Chiudi';
else s1 = '+progress"', s2= 'Apri';
document.write('<a href="%folder%~upload'+s1+' class=button onClick="if (frm.upbtn.disabled) return false;"><img border=0 align=absbottom src="/~img10"> '+s2+' Trasferimento(i) Attivo(i)</a>');
</script>
</div>
<div style="float:right; padding:15px;"><a href="%encoded-folder%" target=_parent class=button><img border=0 align=absbottom src="/~img21"> Cancella Upload</a></div>
<div class=little>Upload to:</div>
<div class=big>%folder%</div>
<div class=body>
<div class=text><b>Spazio libero disponibile per l'upload: %diskfree%</b></div>
<br>
<form name=frm action="%encoded-folder%" target=_parent method=post enctype="multipart/form-data" onSubmit="frm.upbtn.disabled=true; return true;">
%upload-files%
<input name=upbtn type=submit value="Spedisci i file selezionati">
</form>
<script language="jscript">if (!window.parent.progress) document.write('<div class=text><br><img src="/~img10"> Prima di spedire puoi aprire <a target=_blank href="/~progress">una finestra di stato</a>.</div><div class=text><br><img src="/~img9"> Non aprirla mentre l'upload  in corso o esso fallir.</div>');</script>
<div class=text><br><img src="/~img9"> ATTENZIONE: Spedire un file con lo stesso nome di un file esistente nella cartella di destinazione canceller il file precedente!</div>
</div>
<div class=little>
<a href="http://www.berungox.com"> </a><br>Server Time: %timestamp%
<br>Uptime: %uptime%
</div>
</body>
</html>

[upload-file]
<input name=fileupload%idx% size=70 type=file><br>

[upload-results]
<html>
<head>
<title>Resoconto dell'upload in: %folder%</title>
<style>\n%style%\n</style>
</head>
<body>
%loggedin%
<div class=little>Resoconto Dell'upload:</div>
<div class=big>%folder%</div>
<div class=body>
%uploaded-files%
<br><br>
<a href="%encoded-folder%" target=_parent class=big><img border=0 align=absbottom src="/~img14"> Torna indietro</a>
</div>
</body>
</html>

[upload-success]
<li><b>Upload completato con successo!!!</b> Hai spedito: %item-name% --- %item-size%

[upload-failed]
<li><b>SPIACENTE,C' stato un errore, prova di nuovo</b>Errore di upload: %item-name%: ---  %reason%

[upload+progress]
<html>
<head>
<title>Upload in: %folder%</title>
<frameset cols=250,*>
  <frame name=progress src="/~progress" scrolling=auto marginwidth=0>
  <frame src="%encoded-folder%~upload" scrolling=auto>
</frameset>
</head>
<body>
</body>
</html>

[progress]
<html>
<head>
<META HTTP-EQUIV="Refresh" CONTENT="3;URL=/~progress">
<title>Trasferimenti Attivi</title>
<style>
%style%
.filename { font-weight:bold; font-size:8pt; }
.bytes { font-size:7pt; }
.perc { font-size:14px; vertical-align:middle; }
.out_bar { width:100px; font-size:15px; background:black; border:black 1px solid; margin-right:5px; }
.in_bar { height:16px; background:white; color:white;  }
div.body { margin-left:0; margin-right:0; }
body { padding:2px; }
</style>
</head>
<body>
<div class=big>Trasferimenti Attivi</div>
<div class=text>Auto-Refresh: 3 Secondi</div>
<br><center><img src="/~img_graph190x40" style="border:white outset 2px;">
<div class=body>
%progress-files%
</div>
</body>
</html>

[progress-nofiles]
<div class=big>Nessun Trasferimento attivo</div>

[progress-upload-file]
<span class=flag>&nbsp;UP&nbsp;</span>
<div class=text><span class=filename>%filename%</span></div>
<div class=text><div class=bytes>%done-bytes% / %total-bytes% bytes<br>velocit upload corrente: %speed-kb% KB/s</div></div>
<div style="margin-top:5px; margin-bottom:20px;">
  <span class=out_bar><span class=in_bar style="width:%perc%px"></span></span> <div class=text><span class=perc>%perc%%</span></div>
</div>

[progress-download-file]
<span class=flag>&nbsp;DOWN&nbsp;</span>
<div class=text><span class=filename>%filename%</span></div>
<div class=text><div class=bytes>%done-bytes% / %total-bytes% bytes<br>Velocit corrente download: %speed-kb% KB/s</div></div>
<div style="margin-top:5px; margin-bottom:20px;">
  <span class=out_bar><span class=in_bar style="width:%perc%px"></span></span><div class=text><span class=perc> %perc%%</span></div>
</div>

[newfile]
<span class=flag>&nbsp;NEW&nbsp;</span>